home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 48 / MOBICLIC 48.ISO / pc / DATA / LINSTAL.DIR / 00007_Script_7 < prev    next >
Text File  |  2002-07-23  |  345b  |  20 lines

  1. -- installation
  2. on mouseUp
  3.   if the machineType=256 then
  4.     -- installation PC
  5.     set nom = the pathName & "QT5WIN\QuickTimeInstaller.exe"
  6.   else
  7.     -- installation Mac
  8.     set nom = the pathname & "QT5MAC:Installateur QuickTime"
  9.   end if
  10.   open nom
  11.   Quit
  12. end
  13.  
  14. on mouseEnter
  15.   cursor 280
  16. end
  17.  
  18. on mouseLeave
  19.   cursor -1
  20. end